#!/bin/sh

MAJOR=`sw_vers -productVersion | awk -F "." '{ print $2 }'`
if [ ${MAJOR} -ge 5 ];
then
    exit 0
else
    exit 64
fi
